.net mvc foreach with index

79

.net mvc foreach with index -

@{int i = 0;}
@foreach (var item in myList)
{
  @(i++;)
}

Comments

Submit
0 Comments